home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJTST111.ZIP / tests / t09.c < prev    next >
C/C++ Source or Header  |  1993-06-26  |  154b  |  10 lines

  1. main(int argc, char **argv)
  2. {
  3.   if (argc > 1)
  4.   {
  5.     int i = system(argv[1]);
  6.     printf("return value = %d\n", i);
  7.     perror("perror");
  8.   }
  9. }
  10.